Make tests self-hosting * Add wptserve as a submodule for serving HTTP files * Add pywebsocket as a submodule for websockets * Add a serve.py script that initalises the test environment with the servers running on free ports * Remove all PHP from the repository and replace it with wptserve-compatible python * Remove all .htaccess files from the repository and replace with .headers files * Some additional fixes to tests that were otherwise broken 
diff --git a/XMLHttpRequest/event-readystatechange-loaded.htm b/XMLHttpRequest/event-readystatechange-loaded.htm index 50f411d..dc22e1a 100644 --- a/XMLHttpRequest/event-readystatechange-loaded.htm +++ b/XMLHttpRequest/event-readystatechange-loaded.htm 
@@ -32,7 +32,7 @@  }   });    - client.open("GET", "resources/trickle.php?count=1000");  + client.open("GET", "resources/trickle.py?count=1000");   client.send(null);   });   </script>